From: Kenichi Handa Date: Mon, 29 Mar 2004 12:05:16 +0000 (+0000) Subject: (ucs-insert): Fix the error message. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~23433 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=0070dd5e51166ab42875c6409c9506c8881a3275;p=emacs.git (ucs-insert): Fix the error message. --- diff --git a/lisp/international/ucs-tables.el b/lisp/international/ucs-tables.el index a7d05610a80..5574cf3d954 100644 --- a/lisp/international/ucs-tables.el +++ b/lisp/international/ucs-tables.el @@ -1249,7 +1249,7 @@ Interactively, prompts for a hex string giving the code." (interactive "sUnicode (hex): ") (or (integerp arg) (setq arg (string-to-number arg 16))) - (let ((c (decode-char 'ucs arg ))) + (let ((c (decode-char 'ucs arg))) (if c (insert c) (if (or (< arg 0) (> arg #x10FFFF))